home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / comm / zoomhint.zip / HELPME.ARJ / FBBS.BAT < prev    next >
DOS Batch File  |  1993-11-14  |  638b  |  24 lines

  1. @echo off
  2. rem [this is an example batch file for frontend mode operation]
  3. c:
  4. cd\bgfax
  5. bgfax /host
  6. if errorlevel 55 maint1.bat
  7. if errorlevel 50 maint2.bat
  8. if errorlevel 4 goto faxrcvd
  9. if errorlevel 3 goto datacall
  10. if errorlevel 2 goto datacall
  11. if errorlevel 1 fbbs.bat
  12. goto end
  13. :faxrcvd
  14.   rem [you can put a printing batch here if you want]
  15.   %bgfax%\doprint.bat
  16.   del %bgfax%\doprint.bat
  17. :datacall
  18.   rem [ errorlevel 2=data,  errorlevel 3=local logon
  19.   rem [ the following line executes the DOBBS.BAT file created by BGFAX
  20.   rem [ which runs EXEBBS.BAT which should load your bbs software
  21.   %bgfax%\dobbs.bat
  22. :end
  23.  
  24.